home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / clang / netclb23.zip / GENERAL.H < prev    next >
C/C++ Source or Header  |  1994-05-20  |  590b  |  20 lines

  1. #ifndef GENERAL_H
  2. #define GENERAL_H
  3.  
  4. /**********************/
  5. /* General prototypes */
  6. /**********************/
  7.  
  8. int GetNetwareVersion( int *supportedConns );
  9. void NWstrcpy(char *destination,char *source,int count);
  10. void NWintconvert(int in,nw_int *convert);
  11. void NWlongconvert(unsigned long in,nw_long *convert);
  12. int ServerID(char *Name);
  13. int convertNWint(nw_int in);
  14. long convertNWlong(nw_long *in);
  15. void convertNWdate(nw_int date_in,char *date_out);
  16. void convertNWtime(nw_int time_in,char *time_out);
  17. void HexToChar(char *destination,byte *source,word count);
  18.  
  19. #endif
  20.